home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / unitinfo.swg / 0001_DEBUG Information.pas next >
Encoding:
Pascal/Delphi Source File  |  1993-05-28  |  809 b   |  23 lines

  1. Provided you have a copy of Borland Pascal 7.0, you can Single-step, trace
  2. into, put breakpoints etc. in routines contained in SYSTEM.TPU.
  3.  
  4. to do so, you must take the following steps:
  5. -  Extract all Files from RTLSYS.ZIP
  6. -  Assemble all .Asm Files With the following switches:
  7.  
  8.    TAsm *.Asm /mx /zi
  9.  
  10. (Ignore the Single error, as well as all warnings)
  11.  
  12. -  Compile SYSTEM:
  13.  
  14.    BPC SYSTEM /$D+ /$L+
  15.  
  16. -  Add the directory wherein you keep the .Asm Files to the inCLUDE directories
  17. list of BPC.CFG and/or the "Options/Directories" of the IDE.
  18. That's it.  The benefits are enormous, especially it you do a lot of debugging
  19. with a stand-alone debugger (TD, TD286 or TD386).  Like I used to do -- Until I
  20. discovered the joy of using the new IDE of BP 7.  Well, too late the hero, I
  21. guess...
  22.  
  23.